| Server IP : 162.243.168.218 / Your IP : 216.73.216.85 Web Server : Apache System : Linux ISPCONFIG-WEB-EMPRESAS 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64 User : web23 ( 5020) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client3/web23/web/pruebas/wp-content/plugins/pro-elements/license/ |
Upload File : |
<?php
namespace ElementorPro\License;
use Elementor\Core\Admin\Admin_Notices;
use Elementor\Settings;
use Elementor\Utils;
use ElementorPro\Core\Connect\Apps\Activate;
use ElementorPro\License\Notices\Trial_Expired_Notice;
use ElementorPro\License\Notices\Trial_Period_Notice;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Admin {
public static function get_url() {
return \Elementor\Utils::get_pro_link( 'https://elementor.com/pro/?utm_source=wp-plugins&utm_campaign=gopro&utm_medium=wp-dash' );
}
public static function get_license_key() {
return '';
}
public function register_actions() {
}
private function is_connected() {
return $this->get_app()->is_connected();
}
public function get_connect_url( $params = [] ) {
$action = $this->is_connected() ? 'activate_pro' : 'authorize';
return $this->get_app()->get_admin_url( $action, $params );
}
/**
* @return Activate
*/
private function get_app() {
return Plugin::elementor()->common->get_component( 'connect' )->get_app( 'activate' );
}
}